home *** CD-ROM | disk | FTP | other *** search
/ Canadian Geographic Explorer / Canadian Geographic Explorer.iso / pc / riddler.dxr / 00017_Num of Players loop script.ls < prev    next >
Encoding:
Text File  |  1996-10-03  |  220 b   |  13 lines

  1. on exitFrame
  2.   go(marker(0))
  3. end
  4.  
  5. on keyDown
  6.   global gNumPlayers
  7.   set jKey to the keyPressed
  8.   if (jKey = "1") or (jKey = "2") or (jKey = "3") then
  9.     set gNumPlayers to value(jKey)
  10.     go("Enter Name1")
  11.   end if
  12. end
  13.